home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- CObject.h
-
- Interface for the Object Class
-
- Copyright © 1989 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
- #define _H_CObject
-
- #include <oops.h> /* THINK C interface for objects */
-
- struct CObject : indirect { /* Class Declaration */
- /** Instance Variables **/
- /* None */
-
- /** Instance Methods **/
- void Dispose(void);
- CObject *Copy(void);
- };